home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d26 / polyrt1.arc / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-12-17  |  694b  |  33 lines

  1. @ECHO OFF
  2. REM VCS $Workfile:   bat.vcs  $
  3. REM VCS $Revision:   1.0  $   $Date:   18 Nov 1990 13:54:08  $
  4. REM VCS $Author:   Moussaoui  $
  5. REM VCS $Logfile:   B:/UR.VCS/BAT.VCV  $
  6.  REM INSTALL.BAT CREATED ON .1991/12/04│ .00:59:34│ BY MTS
  7.  ECHO. [] install for DOS
  8.  
  9.  
  10. IF "%1"=="" GOTO USAGE
  11.  
  12. :MAIN
  13.  ECHO ---- Copying necessary files to [%1]
  14.  PAUSE
  15.  MD %1 > NUL
  16.  IF NOT EXIST %1\NUL GOTO ERR1
  17.  COPY POLY* %1
  18.  GOTO END
  19.   
  20. :USAGE
  21.  ECHO ---------------------------------
  22.  ECHO  Usage is: %0 path    where path is where you like to install.
  23.  GOTO END
  24.  
  25. :ERR1
  26.  ECHO could not create this directory [%1] please enter the path
  27.  ECHO you would to install to
  28.  GOTO USAGE
  29.  
  30.  
  31. :END
  32.  
  33.